home *** CD-ROM | disk | FTP | other *** search
/ Platinum Plus: Sight & Sound / Platinum Plus Sight and Sound CD Explorer.ISO / _debug / 1.bat next >
Encoding:
DOS Batch File  |  1995-04-21  |  317 b   |  19 lines

  1. @Echo off
  2. rem 1.bat
  3. rem deletes the file threed.vbx from c:\windows
  4.  
  5.  
  6. rem Error checking
  7.  
  8. if not exist c:\windows\threed.vbx goto error
  9.  
  10. rem deleting
  11. echo Deleting C:\WINDOWS\THREED.VBX 
  12. del c:\windows\threed.vbx
  13. Echo Success!
  14. goto exit
  15.  
  16. :error
  17. Echo FILE: C:\WINDOWS\THREED.VBX does not exist
  18.  
  19. :exit